[USER (data scientist)]: That's exactly what I was looking for! Lastly, how do I show the dataframe with all these comparison metrics? Please generate the code with the output in dataframe type.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import numpy as np
import pickle
from decision_company import read_csv_file, fetch_column

# Load the dataset 
atp_tennis = read_csv_file('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(updated_odds_df)

# save data
pickle.dump(updated_odds_df,open("./pred_result/updated_odds_df.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Easy peasy! Just use this code to display the updated dataframe with all the new columns: 

# MY SOLUTION BEGIN:
